home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / strcasecmp.0 < prev    next >
Text File  |  1996-09-02  |  2KB  |  34 lines

  1.  
  2. STRCASECMP(3)              UNIX Programmer's Manual              STRCASECMP(3)
  3.  
  4. NNAAMMEE
  5.      ssttrrccaasseeccmmpp - compare strings, ignoring case
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _i_n_t
  11.      ssttrrccaasseeccmmpp(_c_o_n_s_t _c_h_a_r _*_s_1, _c_o_n_s_t _c_h_a_r _*_s_2)
  12.  
  13.      _i_n_t
  14.      ssttrrnnccaasseeccmmpp(_c_o_n_s_t _c_h_a_r _*_s_1, _c_o_n_s_t _c_h_a_r _*_s_2, _s_i_z_e___t _l_e_n)
  15.  
  16. DDEESSCCRRIIPPTTIIOONN
  17.      The ssttrrccaasseeccmmpp() and ssttrrnnccaasseeccmmpp() functions compare the null-terminated
  18.      strings _s_1 and _s_2 and return an integer greater than, equal to, or less
  19.      than 0, according as _s_1 is lexicographically greater than, equal to, or
  20.      less than _s_2 after translation of each corresponding character to lower-
  21.      case.  The strings themselves are not modified.  The comparison is done
  22.      using unsigned characters, so that `\200' is greater than `\0'.
  23.  
  24.      The ssttrrnnccaasseeccmmpp() compares at most _l_e_n characters.
  25.  
  26. SSEEEE AALLSSOO
  27.      bcmp(3),  memcmp(3),  strcmp(3),  strcoll(3),  strxfrm(3)
  28.  
  29. HHIISSTTOORRYY
  30.      The ssttrrccaasseeccmmpp() and ssttrrnnccaasseeccmmpp() functions are currently under develop-
  31.      ment.
  32.  
  33. BSD Experimental                April 19, 1991                               1
  34.